home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / patches / pgs3f.lha / 3.0fUpdate / Macros.LHA / PrintSignature.rexx < prev    next >
OS/2 REXX Batch file  |  1994-09-20  |  710b  |  20 lines

  1. /* $VER: PrintSignature.rexx 1.0 (02.9.94)
  2.    Copyright 1994 Soft-Logik Publishing Corporation
  3.    May not be distributed without Soft-Logik Publishing Corporation's express written permission */
  4.  
  5. OPTIONS RESULTS
  6. ADDRESS 'PAGESTREAM'
  7.  
  8. /* Allocate requester */
  9. allocarexxrequester '"Work in Progress"' 444 63
  10.     reqhandle=result
  11.  
  12. /* Add gadgets */
  13. addarexxgadget reqhandle EXIT 187 46 70 label "_Ok"
  14.     addhandle=result
  15. addarexxgadget reqhandle TEXT 8 10 424 border none string "'Sorry, this is not finished yet. A completed version'"
  16. addarexxgadget reqhandle TEXT 8 22 424 border none string "'will be included with a free update to PageStream3.'"
  17. doarexxrequester reqhandle
  18. freearexxrequester reqhandle
  19. EXIT
  20.